home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NOVA - For the NeXT Workstation
/
NOVA - For the NeXT Workstation.iso
/
SourceCode
/
Tutorial
/
Cookbook
/
05.line
/
MyView.m
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1992-12-19
|
336 b
|
22 lines
/* Generated by Interface Builder */
#import "MyView.h"
#include <dpsclient/wraps.h>
@implementation MyView
- drawSelf:(NXRect*)r :(int)c
{
NXEraseRect(&bounds);
PSsetgray(NX_BLACK);
PSsetlinewidth(5.0);
PSnewpath();
PSmoveto(50.0, 50.0);
PSlineto(300.0, 200.0);
PSstroke();
return self;
}
@end